home *** CD-ROM | disk | FTP | other *** search
- on InstallQuickTime
- if not (the quickTimePresent) then
- set curplatform to the platform
- if curplatform contains "Macintosh" then
- set executable to "UltraGP\Setup\QuickTime‚Ñ¢\QuickTime‚Ñ¢ Install Disk 1\Installer"
- else
- if curplatform contains "32" then
- set executable to "SETUP\Qt211\qt32.exe"
- else
- set executable to "SETUP\Qt211\qt16.exe"
- end if
- end if
- if offset("Macintosh", curplatform) = 1 then
- set path to executable
- set path to replace(path, "\", ":")
- else
- delpush("\")
- set basepath to the moviePath
- set path to item 1 of basepath & "\" & executable
- delpop()
- end if
- put path
- open(path)
- return 1
- else
- return 0
- end if
- end
-